home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
minix
/
update~4.z
/
update~4
/
lib_stdio_test_tprintf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-09-06
|
235 b
|
17 lines
#include <stdio.h>
main()
{
int i;
for (i = 0; i < 1000; i++) {
printf(" Heading Line \n\
%70s\n\
%70d\n\
%70ld\n",
"String to be printed as a test", 0x7fff, 0x7ffffffL);
}
return 0;
}